SpellChecker

public interface SpellChecker implements ProfileService

A profile service that provides functionality for configuring spell checking.

Functions

Link copied to clipboard
public abstract void addLanguage(Language language)
Adds the language to the list of the languages for which spell checking is performed.
Link copied to clipboard
public abstract Dictionary customDictionary()
Returns the custom dictionary.
Link copied to clipboard
public abstract void disable()
Disables spell checking on the web pages loaded in the browser instances of the profile.
Link copied to clipboard
public abstract void enable()
Enables spell checking on the web pages loaded in the browser instances of the profile.
Link copied to clipboard
public abstract boolean isEnabled()
Indicates whether spell checking is enabled or not.
Link copied to clipboard
public abstract List<Language> languages()
Returns an immutable list of the languages used for spell checking.
Link copied to clipboard
public abstract Profile profile()
Returns the profile of this service.
Link copied to clipboard
public abstract void removeLanguage(Language language)
Removes the language from the list of the languages for which spell checking is performed.